home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / easyk110.zip / AUTOEXEC.TRY < prev    next >
Text File  |  1988-08-18  |  872b  |  38 lines

  1. echo off  
  2. PROMPT $p$g
  3. cd\startup 
  4. rem BLANK turns off video power after 2 min with no use; strike Alt to turn on.
  5. blank 
  6. rem QUICKEYS makes cursor and repeats go about 90% faster.
  7. quickeys 
  8. rem COLOR to specify color monitor character, background & boarder
  9. color 23 128 
  10. rem CED stacks DOS commands for recall with Arrow Up & Arrow Down.
  11. ced 
  12. cd\ 
  13. path=d:\;d:\pcw;d:\startup;d:\dos;d:\ek
  14. echo .
  15. echo  r gives a listing of the root directory.
  16. echo  e starts up EasyK.
  17. echo  p enters the PCWrite subdirectory, PCW.
  18. echo .'
  19. choice "Press r, e, or p when ready. ",rep 
  20.        if errorlevel 3 goto pcwstart
  21.        if errorlevel 2 goto easykst
  22.        if errorlevel 1 goto rootdir
  23.        goto out
  24. :pcwstart
  25.      cd\pcw
  26.      goto out
  27. :easykst
  28.      cd\ek
  29.      easyk
  30.      goto out
  31. :rootdir
  32.      dir/w
  33.      goto out
  34. :out
  35.      exit
  36.      echo on
  37.  
  38.